home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / VBASIC / SHELDEMO.ZIP / SHELLDEM.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-07-19  |  1.5 KB  |  53 lines

  1. VERSION 4.00
  2. Begin VB.Form ShellDemo 
  3.    Caption         =   "Shell About Application Demo"
  4.    ClientHeight    =   3180
  5.    ClientLeft      =   1140
  6.    ClientTop       =   1800
  7.    ClientWidth     =   5160
  8.    Height          =   3870
  9.    Icon            =   "SHELLDEM.frx":0000
  10.    Left            =   1080
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   3180
  13.    ScaleWidth      =   5160
  14.    Top             =   1170
  15.    Width           =   5280
  16.    Begin VB.Label Label1 
  17.       BackStyle       =   0  'Transparent
  18.       Caption         =   "Click Help About to see ShellAbout Demo"
  19.       Height          =   285
  20.       Left            =   960
  21.       TabIndex        =   0
  22.       Top             =   90
  23.       Width           =   3015
  24.    End
  25.    Begin VB.Menu mFile 
  26.       Caption         =   "&File"
  27.       Begin VB.Menu mExit 
  28.          Caption         =   "E&xit"
  29.       End
  30.    End
  31.    Begin VB.Menu mHelp 
  32.       Caption         =   "&Help"
  33.       NegotiatePosition=   3  'Right
  34.       Begin VB.Menu mAbout 
  35.          Caption         =   "&About"
  36.       End
  37.    End
  38. Attribute VB_Name = "ShellDemo"
  39. Attribute VB_Creatable = False
  40. Attribute VB_Exposed = False
  41. Option Explicit
  42. Private Sub mAbout_Click()
  43.     Dim OtherInfo As String
  44.     OtherInfo = "
  45.  1996 Visual Basic Broad-Band Network" & Chr(13)
  46.     OtherInfo = OtherInfo & "Hitesh K. Soneji  "
  47.     OtherInfo = OtherInfo & "hitesh.soneji@industry.net"
  48.     AppAbout ShellDemo, "Shell About Demo Application", OtherInfo
  49. End Sub
  50. Private Sub mExit_Click()
  51.     End
  52. End Sub
  53.